默认的访问地址
在 Spring MVC 中,默认的访问地址在wb.xml配置:
1 | <welcome-file-list> |
- 跳转到 webapp 中的 : index.jsp
在 Spring Boot 中,直接访问:
1 | http://localhost:8080 |
- 直接会跳转到 templates 中的 : index.html
Spring Boot 源码中默认的主页配置
1.5.15 Spring Boot - WebMvcAutoConfiguration 代码
1 | private WelcomePageHandlerMapping(Resource welcomePage, String staticPathPattern) { |
2.0.4 Spring Boot - WebMvcAutoConfiguration 代码
1 |
|
在 Spring Boot 中默认的访问页面是:index.html,在配置文件中可以找到相应的代码。
修改 Spring Boot 默认访问页面
我们可以通过 Controller 在访问 http://localhost:8080 时跳转到想要的主页
1 |
|
- 加上这样的代码,在访问时就会把 “/” 转到 “login.html”上,也就变相修改了默认的主页。